home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / WORDMISC / PROSRB.LZH / PRINTMAN.BAT < prev    next >
DOS Batch File  |  1989-03-29  |  1KB  |  27 lines

  1. echo off
  2. cls
  3. if not exist psmanual.doc goto NOPSManual
  4.    echo ─────────────────────────────────────────────────────────────────────────
  5.    echo   This will print Pro~Scribe's PSManual.DOC on your printer.
  6.    echo          TO STOP printing at any time, just press Ctrl-Break!
  7.    echo   PLEASE :
  8.    echo     * Print using FIXED spaced fonts.  The tables and charts
  9.    echo       look terrible if printed with proportionally spaced fonts.
  10.    echo     * Line up the paper so we can print right on the top line.
  11.    echo     * Set your printer to 66 lines-per-page.  Some pages have 60+lines.
  12.    echo       If your printer's set up to print LESS THAN 66 LINES PER PAGE, you
  13.    echo       might want to press Ctrl-Break, reset your printer, then re-run this.
  14.    echo   Your manual will be printed in whatever mode your printer is in now.
  15.    echo   So if it's in the wrong mode (eg., DRAFT mode, not LETTER QUALITY),
  16.    echo   press Ctrl-Break, set up your printer, then start this again.
  17.    echo ─────────────────────────────────────────────────────────────────────────
  18. pause
  19. COPY PSManual.DOC PRN
  20. goto End
  21. :NOPSManual
  22.    echo PSManual.Doc was NOT found on this disk.
  23.    echo When you find the file called PSManual.Doc, either run this again, or
  24.    echo type:    COPY PSMANUAL.DOC PRN     (to print the manual on your printer)
  25.  
  26. :END
  27.